home *** CD-ROM | disk | FTP | other *** search
-
- NAME
- DLopencon - Open debug console.
-
- SYNOPSIS
- console = DLopencon()
-
- APTR DLopencon(void);
-
- FUNCTION
- This opens a console window and returns an abstact pointer
- to it. This pointer must be suplied as the first argument
- to other debug.lib functions.
-
- INPUTS
- None
-
- RESULTS
- A pointer to the debug.lib console.
-
- BUGS
- None (they are all features, as they say.. ;)
-
- SEE ALSO
-
- DLclosecon()
-
- -
-
- NAME
- DLprintf() - Print formated output to debug.lib console.
-
- SYNOPSIS
- DLprintf( console, fmt, ...)
-
- void DLprintf( APTR, STRPTR, ...);
-
- FUNCTION
- Formats non-float arguments and prints them to the
- debug.lib console window.
-
- INPUTS
- console - The abstract pointer returned by previous
- call to DLopencon().
- fmt - exec RawDoFmt()-like formatstring.
-
- RESULTS
- String is printed.
-
- NOTES
- This call is executed syncronously and therefore adds
- a certain amount of overhead to the function in which
- it is used. For input handlers such as a the gadget
- class handleinput method usage should be kept to an
- minimum. It is possible that the handler will fail to
- process some events, and this could have unexpected
- results, i.e. guru..
-
- SEE ALSO
- RawDoFmt(), A book on C stdio.
-
-
- -
-
- NAME
- DLclosecon - Close a debug.lib console.
-
- SYNOPSIS
- DLclosecon( console)
-
- void DLclosecon( APTR);
-
- FUNCTION
- When you are done using the console you must
- use this function to close it.
-
- INPUTS
- console - Abtract debug.lib console pointer
- returned by call to DLopencon.
-
- RESULTS
- The debug.lib console is closed.
-
- BUGS
- None (How hard can closing a window be.. :)
-
- SEE ALSO
- DLopencon()
-